quick sort - translation to ρωσικά
DICLIB.COM
AI-based language tools
Εισάγετε μια λέξη ή φράση σε οποιαδήποτε γλώσσα 👆
Γλώσσα:     

Μετάφραση και ανάλυση λέξεων από τεχνητή νοημοσύνη

Σε αυτήν τη σελίδα μπορείτε να λάβετε μια λεπτομερή ανάλυση μιας λέξης ή μιας φράσης, η οποία δημιουργήθηκε χρησιμοποιώντας το ChatGPT, την καλύτερη τεχνολογία τεχνητής νοημοσύνης μέχρι σήμερα:

  • πώς χρησιμοποιείται η λέξη
  • συχνότητα χρήσης
  • χρησιμοποιείται πιο συχνά στον προφορικό ή γραπτό λόγο
  • επιλογές μετάφρασης λέξεων
  • παραδείγματα χρήσης (πολλές φράσεις με μετάφραση)
  • ετυμολογία

quick sort - translation to ρωσικά

DIVIDE AND CONQUER SORTING ALGORITHM
Quick sort; QuickSort; Quick Sort; Randomized quicksort; Hoaresort; Balanced quicksort; External quicksort; Quick3; Quick3 sort; Parallel quicksort; Partition-exchange sort; Partition exchange sort
  • ''O''(''n''<sup>2</sup>)}}) on ''already sorted'' arrays, or arrays of identical elements. Since sub-arrays of sorted / identical elements crop up a lot towards the end of a sorting procedure on a large set, versions of the quicksort algorithm that choose the pivot as the middle element run much more quickly than the algorithm described in this diagram on large sets of numbers.
  • An animated demonstration of Quicksort using Hoare's partition scheme. The red outlines show the positions of the left and right pointers (<code>i</code> and <code>j</code> respectively), the black outlines show the positions of the sorted elements, and the filled black square shows the value that is being compared to (<code>pivot</code>).

quick sort         
быстрая сортировка
bubble sort         
  • An example of bubble sort. Starting from the beginning of the list, compare every adjacent pair, swap their position if they are not in the right order (the latter one is smaller than the former one). After each [[iteration]], one less element (the last one) is needed to be compared until there are no more elements left to be compared.
  • Bubble sort. The list was plotted in a Cartesian coordinate system, with each point (''x'', ''y'') indicating that the value ''y'' is stored at index ''x''. Then the list would be sorted by bubble sort according to every pixel's value. Note that the largest end gets sorted first, with smaller elements taking longer to move to their correct positions.
SIMPLE SORTING ALGORITHM
Bubble sort/C; Bubblesort; Worst case bubble sort; Bubble sort algorithm; BubbleSort; Sinking sort; Sink sort; Bubble Sort

общая лексика

пузырьковая сортировка

один из самых распространенных простых алгоритмов сортировки: сравниваются два первых элемента последовательности. Если порядок их расположения нарушен, элементы меняют местами. Далее сравниваются второй и третий элементы, третий и четвертый и т.д. до конца списка. Алгоритм гарантирует, что в результате в конце списка окажется самый большой (или наименьший) элемент, поэтому во время следующего цикла сортировки число сравнений можно сократить на единицу

quick step         
  • 20px
  • 15px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
  • 20px
CYCLING TEAM
Quick·Step; Quickstep-Davitamon; Quick Step - Davitamon; Quick-Step; Quick Step-Davitamon; Quick Step - Innergetic; Quickstep-Innergetic; Quick Step-Innergetic; Team Quick Step; Quick*Step; Quick Step; Omega Pharma-QuickStep; Omega Pharma-Quick Step; Quick Step–Davitamon; Etixx-Quick Step; Etixx-Quick-Step; Etixx–Quick Step; Etixx–Quick-Step; Quick-Step Floors; Deceuninck-Quick-Step; Deceuninck–Quick-Step; Quick-Step-Alpha Vinyl; Quick-Step–Alpha Vinyl; Quick-Step Alpha Vinyl; Quick-Step Alpha Vinyl Team; Soudal Quick-Step Team; Soudal-Quick-Step; Soudal–Quick-Step; Quick-Step–Innergetic; Quick-Step-Innergetic; Quick-Step–Davitamon; Omega Pharma–Quick-Step; Quick-Step-Davitamon; Omega Pharma-Quick-Step; Quick-Step (cycling team)
скорый шаг

Ορισμός

Quicksort
A sorting algorithm with O(n log n) average time complexity. One element, x of the list to be sorted is chosen and the other elements are split into those elements less than x and those greater than or equal to x. These two lists are then sorted recursively using the same algorithm until there is only one element in each list, at which point the sublists are recursively recombined in order yielding the sorted list. This can be written in Haskell: qsort :: Ord a => [a] -> [a] qsort [] = [] qsort (x:xs) = qsort [ u | u<-xs, u<x ] ++ [ x ] ++ qsort [ u | u<-xs, u>=x ] [Mark Jones, Gofer prelude.]

Βικιπαίδεια

Quicksort

Quicksort is an efficient, general-purpose sorting algorithm. Quicksort was developed by British computer scientist Tony Hoare in 1959 and published in 1961. It is still a commonly used algorithm for sorting. Overall, it is slightly faster than merge sort and heapsort for randomized data, particularly on larger distributions.

Quicksort is a divide-and-conquer algorithm. It works by selecting a 'pivot' element from the array and partitioning the other elements into two sub-arrays, according to whether they are less than or greater than the pivot. For this reason, it is sometimes called partition-exchange sort. The sub-arrays are then sorted recursively. This can be done in-place, requiring small additional amounts of memory to perform the sorting.

Quicksort is a comparison sort, meaning that it can sort items of any type for which a "less-than" relation (formally, a total order) is defined. Most implementations of quicksort are not stable, meaning that the relative order of equal sort items is not preserved.

Mathematical analysis of quicksort shows that, on average, the algorithm takes O ( n log n ) {\displaystyle O(n\log {n})} comparisons to sort n items. In the worst case, it makes O ( n 2 ) {\displaystyle O(n^{2})} comparisons.

Παραδείγματα από το σώμα κειμένου για quick sort
1. DUFFY÷ Chris Cannon, from Utah. I‘ll give you a quick sort of summary of his remarks. The President will, obviously, talk about why we must continue the fight in the war on terrorism, and he‘ll also start out with a tribute to the great gains that the current veterans have made for freedom and securing our country in past conflicts. He‘ll talk about why we must remember the troops who left America‘s shores but did not live to make the journey home, and how we can never forget their courage and their sacrifice.
Μετάφραση του &#39quick sort&#39 σε Ρωσικά